Remove WikiPage::estimateRevisionCount (deprecated since 1.19)
authorumherirrender <umherirrender_de.wp@web.de>
Tue, 15 Jul 2014 12:46:56 +0000 (14:46 +0200)
committerKunal Mehta <legoktm@gmail.com>
Wed, 20 Aug 2014 06:39:33 +0000 (23:39 -0700)
Change-Id: Icc44f67dd6479553b44f5566d1158638e4a09e60

RELEASE-NOTES-1.24
includes/page/WikiPage.php

index 9db0cce..a1f30e8 100644 (file)
@@ -338,6 +338,7 @@ changes to languages because of Bugzilla reports.
   and sendToUDP() from RecentChange.php. (deprecated since 1.22)
 * Removed EnhancedChangesList::arrow(), sideArrow(), downArrow(), spacerArrow().
 * Removed Xml::namespaceSelector(). (deprecated since 1.19)
+* Removed WikiPage::estimateRevisionCount. (deprecated since 1.19)
 
 ==== Renamed classes ====
 * CLDRPluralRuleConverter_Expression to CLDRPluralRuleConverterExpression
index 47f64a2..b62f40d 100644 (file)
@@ -3505,17 +3505,6 @@ class WikiPage implements Page, IDBAccessObject {
                return $wgParser->preSaveTransform( $text, $this->mTitle, $user, $popts );
        }
 
-       /**
-        * Get the  approximate revision count of this page.
-        *
-        * @deprecated since 1.19; use Title::estimateRevisionCount() instead.
-        * @return int
-        */
-       public function estimateRevisionCount() {
-               wfDeprecated( __METHOD__, '1.19' );
-               return $this->mTitle->estimateRevisionCount();
-       }
-
        /**
         * Update the article's restriction field, and leave a log entry.
         *